Platform Explorer / Nuxeo Platform 2023.10

Extension point videoConversions

Documentation

Extension point to contribute available video conversions

Since 7.2, 2 new attributes are available:

  • rendition: true if this video conversion should be exposed as a rendition, false otherwise.
  • renditionVisible: equivalent of the 'visible' attribute on a rendition definition, true if this video conversion is a rendition and should be visible in the UI, false otherwise

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.video.service.VideoConversion

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-video-2023.10.13.jar /OSGI-INF/video-service-contrib.xml
    <extension point="videoConversions" target="org.nuxeo.ecm.platform.video.service.VideoService">
    
        <videoConversion converter="convertToMP4" height="480" name="MP4 480p" rendition="true"/>
        <videoConversion converter="convertToWebM" height="480" name="WebM 480p" rendition="true"/>
        <videoConversion converter="convertToOgg" height="480" name="Ogg 480p" rendition="true"/>
    
      </extension>